How do you use the `card-deck` component in Bootstrap?
Description : The `card-deck` component is used to arrange cards with equal height in a row.
Answer :
The `card-deck` component in Bootstrap arranges cards with equal height in a horizontal row. Example:`<div class='card-deck'><div class='card'>Card 1</div><div class='card'>Card 2</div><div class='card'>Card 3</div></div>` arranges the cards evenly across the width of the container.
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>